home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 5 / The 640 Meg Shareware Studio CD-ROM Volume V (Data Express)(1994).ISO / amiga / avm1_19.lha / rexx / openmailbox.avm < prev    next >
Text File  |  1994-04-06  |  308b  |  12 lines

  1. /* */
  2. parse arg mailbox special .
  3.  
  4. if special = 1 | special = 0 then
  5.     address command 'run >nil: <nil: avm:logview' mailbox
  6. else if special = 2 then
  7.     address command 'run >nil: <nil: avm:scheduler' mailbox
  8. else if special = 3 then
  9.     address command 'run >nil: <nil: avm:scheduler' mailbox '-noschedule'
  10.  
  11. exit
  12.